This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

1import CardsContainer from '@/features/cards/containers/cardsContainer/CardsContainer'; 2 3interface Props { 4 params: Promise<{ handle: string }>; 5} 6 7export default async function Page(props: Props) { 8 const { handle } = await props.params; 9 10 return <CardsContainer handle={handle} />; 11}